From 70ca3439f3df6460436c7ca6330f85f27fdb07f2 Mon Sep 17 00:00:00 2001 From: Roger Pau Monne Date: Fri, 22 Sep 2017 16:25:11 +0100 Subject: [PATCH] xl: add PVH as a guest type MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit And remove device model "none". Signed-off-by: Roger Pau Monné Acked-by: Ian Jackson --- tools/xl/xl_parse.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tools/xl/xl_parse.c b/tools/xl/xl_parse.c index f267a74ec9..e6e3ba09f3 100644 --- a/tools/xl/xl_parse.c +++ b/tools/xl/xl_parse.c @@ -906,6 +906,8 @@ void parse_config_data(const char *config_source, c_info->type = LIBXL_DOMAIN_TYPE_HVM; else if (!strncmp(buf, "pv", strlen(buf))) c_info->type = LIBXL_DOMAIN_TYPE_PV; + else if (!strncmp(buf, "pvh", strlen(buf))) + c_info->type = LIBXL_DOMAIN_TYPE_PVH; else { fprintf(stderr, "Invalid domain type %s.\n", buf); exit(1); @@ -1364,6 +1366,7 @@ void parse_config_data(const char *config_source, } break; + case LIBXL_DOMAIN_TYPE_PVH: case LIBXL_DOMAIN_TYPE_PV: { /* @@ -2070,8 +2073,6 @@ skip_usbdev: } else if (!strcmp(buf, "qemu-xen")) { b_info->device_model_version = LIBXL_DEVICE_MODEL_VERSION_QEMU_XEN; - } else if (!strcmp(buf, "none")) { - b_info->device_model_version = LIBXL_DEVICE_MODEL_VERSION_NONE; } else { fprintf(stderr, "Unknown device_model_version \"%s\" specified\n", buf); -- 2.30.2